home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / plugin / api / URIScheme.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-30  |  1.5 KB  |  58 lines

  1. package com.extensibility.plugin.api;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6. import java.io.Reader;
  7. import java.io.Writer;
  8.  
  9. public interface URIScheme {
  10.    String PLUGIN_NAME = "URIScheme10";
  11.  
  12.    void registerSchemes(Manager var1);
  13.  
  14.    URIScheme construct(String var1, String var2);
  15.  
  16.    URIScheme construct(Object var1);
  17.  
  18.    URIScheme construct(String var1);
  19.  
  20.    String computeRelative(URIScheme var1);
  21.  
  22.    URIScheme toParent();
  23.  
  24.    String getScheme();
  25.  
  26.    URIScheme renameTo(String var1);
  27.  
  28.    String getUIName();
  29.  
  30.    long getLength();
  31.  
  32.    InputStream createInputStream() throws IOException;
  33.  
  34.    Reader createReader() throws IOException;
  35.  
  36.    Writer createWriter() throws IOException;
  37.  
  38.    OutputStream createOutputStream() throws IOException;
  39.  
  40.    boolean exists();
  41.  
  42.    boolean hasPersistence();
  43.  
  44.    boolean isEmpty();
  45.  
  46.    boolean isReadOnly();
  47.  
  48.    boolean equals(URIScheme var1);
  49.  
  50.    int compareTo(URIScheme var1);
  51.  
  52.    String getShortName();
  53.  
  54.    String getFullPath();
  55.  
  56.    Object getInterface(Class var1);
  57. }
  58.